func time.absDate

7 uses

	time (current package)
		format.go#L578: 	year, month, day, _ := absDate(abs, true)
		format.go#L692: 			year, month, day, yday = absDate(abs, true)
		format_rfc3339.go#L22: 	year, month, day, _ := absDate(abs, true)
		time.go#L572: 	year, _, _, yday := absDate(abs, false)
		time.go#L997: 	return absDate(t.abs(), full)
		time.go#L1012: func absDate(abs uint64, full bool) (year int, month Month, day int, yday int) {
		zoneinfo.go#L334: 	year, _, _, yday := absDate(uint64(sec+unixToInternal+internalToAbsolute), false)